home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / GRIDS / MSTRGRID / MSTRDEM_.DFM / MSTRDEM_.txt
Text File  |  1996-06-17  |  7KB  |  349 lines

  1. object Form1: TForm1
  2.   Left = 435
  3.   Top = 105
  4.   Width = 631
  5.   Height = 433
  6.   Caption = 'Form1'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   OnCreate = FormCreate
  12.   PixelsPerInch = 96
  13.   TextHeight = 13
  14.   object Label1: TLabel
  15.     Left = 8
  16.     Top = 312
  17.     Width = 27
  18.     Height = 13
  19.     Caption = 'Rows'
  20.   end
  21.   object Label2: TLabel
  22.     Left = 8
  23.     Top = 280
  24.     Width = 40
  25.     Height = 13
  26.     Caption = 'Columns'
  27.   end
  28.   object Label3: TLabel
  29.     Left = 56
  30.     Top = 264
  31.     Width = 23
  32.     Height = 13
  33.     Caption = 'At all'
  34.   end
  35.   object Label4: TLabel
  36.     Left = 120
  37.     Top = 264
  38.     Width = 25
  39.     Height = 13
  40.     Caption = 'Fixed'
  41.   end
  42.   object AbbruchBtn: TBitBtn
  43.     Left = 568
  44.     Top = 376
  45.     Width = 51
  46.     Height = 25
  47.     Caption = '&Bye'
  48.     TabOrder = 9
  49.     OnClick = AbbruchBtnClick
  50.     Kind = bkAbort
  51.   end
  52.   object Key_Type: TRadioGroup
  53.     Left = 8
  54.     Top = 344
  55.     Width = 81
  56.     Height = 57
  57.     Caption = 'KeyType'
  58.     ItemIndex = 0
  59.     Items.Strings = (
  60.       'String'
  61.       'Case Sens'
  62.       'Numeric')
  63.     TabOrder = 4
  64.     OnClick = Key_TypeClick
  65.   end
  66.   object RowCnt: TSpinEdit
  67.     Left = 56
  68.     Top = 312
  69.     Width = 41
  70.     Height = 22
  71.     MaxValue = 0
  72.     MinValue = 0
  73.     TabOrder = 1
  74.     Value = 0
  75.     OnChange = RowCntChange
  76.   end
  77.   object ColCnt: TSpinEdit
  78.     Left = 56
  79.     Top = 280
  80.     Width = 41
  81.     Height = 22
  82.     MaxValue = 0
  83.     MinValue = 0
  84.     TabOrder = 0
  85.     Value = 0
  86.     OnChange = ColCntChange
  87.   end
  88.   object SaveBtn: TButton
  89.     Left = 576
  90.     Top = 336
  91.     Width = 41
  92.     Height = 25
  93.     Caption = 'Save'
  94.     TabOrder = 8
  95.     OnClick = SaveBtnClick
  96.   end
  97.   object loadBtn: TButton
  98.     Left = 528
  99.     Top = 336
  100.     Width = 43
  101.     Height = 25
  102.     Caption = 'Reload'
  103.     Default = True
  104.     TabOrder = 7
  105.     OnClick = loadBtnClick
  106.   end
  107.   object Panel1: TPanel
  108.     Left = 440
  109.     Top = 256
  110.     Width = 177
  111.     Height = 73
  112.     TabOrder = 3
  113.     object InsCol: TButton
  114.       Left = 8
  115.       Top = 8
  116.       Width = 57
  117.       Height = 25
  118.       Caption = 'Ins Cols'
  119.       Default = True
  120.       TabOrder = 0
  121.       OnClick = InsColClick
  122.     end
  123.     object InsRow: TButton
  124.       Left = 8
  125.       Top = 40
  126.       Width = 57
  127.       Height = 25
  128.       Caption = 'Ins Rows'
  129.       TabOrder = 3
  130.       OnClick = InsRowClick
  131.     end
  132.     object DelCol: TButton
  133.       Left = 112
  134.       Top = 8
  135.       Width = 57
  136.       Height = 25
  137.       Caption = 'Del Cols'
  138.       TabOrder = 1
  139.       OnClick = DelColClick
  140.     end
  141.     object DelRow: TButton
  142.       Left = 112
  143.       Top = 40
  144.       Width = 57
  145.       Height = 25
  146.       Caption = 'Del Rows'
  147.       TabOrder = 4
  148.       OnClick = DelRowClick
  149.     end
  150.     object Anz: TSpinEdit
  151.       Left = 72
  152.       Top = 27
  153.       Width = 33
  154.       Height = 22
  155.       MaxValue = 0
  156.       MinValue = 0
  157.       TabOrder = 2
  158.       Value = 1
  159.     end
  160.   end
  161.   object Panel2: TPanel
  162.     Left = 168
  163.     Top = 336
  164.     Width = 313
  165.     Height = 65
  166.     TabOrder = 6
  167.     object Search: TEdit
  168.       Left = 8
  169.       Top = 5
  170.       Width = 65
  171.       Height = 20
  172.       TabOrder = 0
  173.       Text = 'Kiel'
  174.     end
  175.     object Nextbtn: TButton
  176.       Left = 262
  177.       Top = 32
  178.       Width = 43
  179.       Height = 25
  180.       Caption = 'Next'
  181.       Enabled = False
  182.       Font.Color = clBlack
  183.       Font.Height = -13
  184.       Font.Name = 'MS Sans Serif'
  185.       Font.Style = []
  186.       ParentFont = False
  187.       TabOrder = 6
  188.       OnClick = NextbtnClick
  189.     end
  190.     object FindBtn: TButton
  191.       Left = 8
  192.       Top = 32
  193.       Width = 65
  194.       Height = 25
  195.       Caption = 'Find'
  196.       Default = True
  197.       TabOrder = 3
  198.       OnClick = FindBtnClick
  199.     end
  200.     object Substring_Search: TCheckBox
  201.       Left = 184
  202.       Top = 8
  203.       Width = 121
  204.       Height = 17
  205.       Caption = 'Search Substring'
  206.       TabOrder = 2
  207.       OnClick = Substring_SearchClick
  208.     end
  209.     object RowWise: TCheckBox
  210.       Left = 80
  211.       Top = 8
  212.       Width = 97
  213.       Height = 17
  214.       Caption = 'Search Rowwise'
  215.       State = cbChecked
  216.       TabOrder = 1
  217.       OnClick = RowWiseClick
  218.     end
  219.     object FindZeile: TButton
  220.       Left = 158
  221.       Top = 32
  222.       Width = 75
  223.       Height = 25
  224.       Caption = 'Find in Row'
  225.       TabOrder = 5
  226.       OnClick = FindZeileClick
  227.     end
  228.     object FindSpalte: TButton
  229.       Left = 78
  230.       Top = 32
  231.       Width = 75
  232.       Height = 25
  233.       Caption = 'Find in Column'
  234.       TabOrder = 4
  235.       OnClick = FindSpalteClick
  236.     end
  237.   end
  238.   object Use_fixed: TRadioGroup
  239.     Left = 96
  240.     Top = 344
  241.     Width = 65
  242.     Height = 57
  243.     Caption = 'Use Fixed'
  244.     Items.Strings = (
  245.       'No'
  246.       'Smart'
  247.       'Yes')
  248.     TabOrder = 5
  249.     OnClick = Use_fixedClick
  250.   end
  251.   object Panel3: TPanel
  252.     Left = 168
  253.     Top = 256
  254.     Width = 265
  255.     Height = 73
  256.     TabOrder = 2
  257.     object SpaltenSortBtn: TBitBtn
  258.       Left = 8
  259.       Top = 8
  260.       Width = 97
  261.       Height = 25
  262.       Caption = 'Sort complete cols'
  263.       Default = True
  264.       TabOrder = 0
  265.       OnClick = SpaltenSortBtnClick
  266.     end
  267.     object ZeilenSortBtn: TButton
  268.       Left = 8
  269.       Top = 40
  270.       Width = 97
  271.       Height = 25
  272.       Caption = 'Sort complete rows'
  273.       TabOrder = 3
  274.       OnClick = ZeilenSortBtnClick
  275.     end
  276.     object SortRows: TButton
  277.       Left = 110
  278.       Top = 40
  279.       Width = 83
  280.       Height = 25
  281.       Caption = 'Sort every Row'
  282.       TabOrder = 4
  283.       OnClick = SortRowsClick
  284.     end
  285.     object SortCols: TButton
  286.       Left = 112
  287.       Top = 8
  288.       Width = 81
  289.       Height = 25
  290.       Caption = 'Sort every Col'
  291.       TabOrder = 1
  292.       OnClick = SortColsClick
  293.     end
  294.     object SortThisRow: TButton
  295.       Left = 200
  296.       Top = 40
  297.       Width = 59
  298.       Height = 25
  299.       Caption = 'Sort Row'
  300.       TabOrder = 5
  301.       OnClick = SortThisRowClick
  302.     end
  303.     object SortThisCol: TButton
  304.       Left = 200
  305.       Top = 8
  306.       Width = 59
  307.       Height = 25
  308.       Caption = 'Sort Col'
  309.       TabOrder = 2
  310.       OnClick = SortThisColClick
  311.     end
  312.   end
  313.   object FixCol: TSpinEdit
  314.     Left = 112
  315.     Top = 280
  316.     Width = 41
  317.     Height = 22
  318.     MaxValue = 0
  319.     MinValue = 0
  320.     TabOrder = 11
  321.     Value = 0
  322.     OnChange = FixColChange
  323.   end
  324.   object FixRow: TSpinEdit
  325.     Left = 112
  326.     Top = 312
  327.     Width = 41
  328.     Height = 22
  329.     MaxValue = 0
  330.     MinValue = 0
  331.     TabOrder = 10
  332.     Value = 0
  333.     OnChange = FixRowChange
  334.   end
  335.   object mStrGrid1: TmStrGrid
  336.     Left = 8
  337.     Top = 8
  338.     Width = 609
  339.     Height = 241
  340.     Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing, goTabs]
  341.     TabOrder = 12
  342.     KeyType = soString
  343.     KeyPos = 1
  344.     KeyLen = 2147483647
  345.     UseFixed = hfNot
  346.     SearchSubstring = False
  347.   end
  348. end
  349.